home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / HyperCuber Source / HyperCuber 2.0 Source.sit / HyperCuber 2.0 Source / CControlsWindow.h < prev    next >
Text File  |  1994-04-29  |  627b  |  27 lines

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| CControlsWindow.h
  3. //|
  4. //| This file contains the interface to a controls window.
  5. //|___________________________________________________________________________
  6.  
  7. #include "CEnhancedWindow.h"
  8.  
  9. class CControlsWindow : public CEnhancedWindow
  10.     {
  11.     
  12. public:
  13.  
  14.     short dimension;
  15.     
  16.     void IControlsWindow(short WINDid, Boolean aFloating,
  17.                         CDesktop *anEnclosure, CDirector *aSupervisor, short dim);
  18.  
  19.     virtual void Move(short h, short v);
  20.     virtual void HideFloat(void);
  21.     virtual void ShowFloat(void);
  22.     virtual void Drag(EventRecord *macEvent);
  23.     
  24.     };
  25.  
  26.  
  27.